home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / O Boy / Source / BaseTypes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-21  |  300 b   |  14 lines  |  [TEXT/R*ch]

  1. #pragma once on
  2. //    --------------------------
  3. //  BaseTypes.h
  4.  
  5.  
  6. typedef        char                 Int_8;        // 8 bit integers
  7. typedef        unsigned char        UInt_8;
  8.  
  9. typedef        short                 Int_16;    // 16 bit integers
  10. typedef        unsigned short        UInt_16;
  11.  
  12. typedef        long                 Int_32;    // 32 bit integers
  13. typedef        unsigned long        UInt_32;
  14.